home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / t_sys5 / unixcpio.gz / unixnet.cpio / heard.h < prev    next >
C/C++ Source or Header  |  1994-07-11  |  345b  |  20 lines

  1. #define HEARD_IP        0x01
  2. #define HEARD_ARP        0x02
  3. #define HEARD_NETROM    0x04
  4.  
  5. struct heard_stuff {
  6.     struct ax25            info;
  7.     unsigned long        htime;
  8.     int16                flags;
  9.     short                next;
  10. };
  11.  
  12. #define MAX_HEARD 22  /* too many scrolls newest off screen */
  13.  
  14. struct ax25_heard {
  15.     int16        enabled;
  16.     int16        cnt;
  17.     short        first;
  18.     struct heard_stuff    list[MAX_HEARD];
  19. };
  20.